home *** CD-ROM | disk | FTP | other *** search
Wrap
<?xml version="1.0" encoding="utf-8" ?> <ME_BRICK GUID="{E2EE8378-D973-4A1E-8C62-1E9C74E631EC}" Name="RtLog10" GUIName="Log10" Description="Returns the base-10 logarithm of X (Per component) [log10]"> <ME_BRICK_INPUTPARAM GUID="{C5E0351B-8A8C-4BFE-8D71-F52ABCF2656E}" Name="Input" Type="RtNumeric"/> <ME_BRICK_OUTPUTPARAM GUID="{5A4E84C1-FB67-4DCD-8EBC-78C217BDE54F}" Name="Result" Type="RtNumeric"/> <ME_BRICK_CODE><![CDATA[ void RtLog10(in RtFloat Input, out RtFloat Result) { Result = rtx_Log10(Input); } void RtLog10(in RtFloat3 Input, out RtFloat3 Result) { Result = rtx_Log10(Input); } void RtLog10(in RtFloat4 Input, out RtFloat4 Result) { Result = rtx_Log10(Input); } void RtLog10(in RtFloat3x3 Input, out RtFloat3x3 Result) { Result = rtx_Log10(Input); } void RtLog10(in RtFloat4x4 Input, out RtFloat4x4 Result) { Result = rtx_Log10(Input); } ]]></ME_BRICK_CODE> </ME_BRICK>